Deny all warnings when building cargo
authorAlex Crichton <alex@alexcrichton.com>
Mon, 28 Jul 2014 20:57:57 +0000 (13:57 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Mon, 28 Jul 2014 21:01:05 +0000 (14:01 -0700)
This helps keep the build a little cleaner and any breakage that happens due to
rust changing will likely be mitigated by nightlies.

src/cargo/lib.rs

index b90ebe6e16370a80385a54fa530cb17fb2195051..50925ae7c87d5dbc1360bf4a9651c9515d209430 100644 (file)
@@ -3,6 +3,7 @@
 
 #![feature(macro_rules, phase)]
 #![feature(default_type_params)]
+#![deny(warnings)]
 
 extern crate debug;
 extern crate term;